home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / devtools / automake-1.0.tar.gz / automake-1.0.tar / automake-1.0 / tests / vtexi.test < prev   
Text File  |  1996-02-27  |  523b  |  27 lines

  1. #!/bin/sh
  2.  
  3. # Test for bug reported by Jim Meyering:
  4. # When I ran automake-0.29 on textutils,
  5. # I noticed that doc/Makefile.in had
  6. #   textutils.info: textutils.texi
  7. # instead of
  8. #   textutils.info: textutils.texi version.texi
  9.  
  10. . $srcdir/defs || exit 1
  11.  
  12. cat > Makefile.am << 'END'
  13. info_TEXINFOS = textutils.texi
  14. END
  15.  
  16. cat > textutils.texi << 'END'
  17. @include version.texi
  18. END
  19.  
  20. # Required when using Texinfo.
  21. : > mdate-sh
  22. : > texinfo.tex
  23.  
  24. $AUTOMAKE || exit 1
  25.  
  26. grep '^textutils\.info: textutils\.texi version\.texi$' Makefile.in
  27.